home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pesquisa Dirigida
/
Pesquisa Dirigida.iso
/
JOGOS
/
buscandoanemo.swf
/
scripts
/
frame_4
/
DoAction.as
Wrap
Text File
|
2005-01-17
|
639b
|
20 lines
if(minDistance < Math.abs(endX - startX) || minDistance < Math.abs(endY - startY))
{
duplicateMovieClip("bubble","bubble" + i,16384 + i);
_root["bubble" + i]._x = _root._xmouse;
_root["bubble" + i]._y = _root._ymouse;
_root["bubble" + i]._alpha = Math.random() * 75 + 25;
test = random(2);
if(test == 1)
{
_root["bubble" + i]._xscale = Math.random() * 100 + 10;
_root["bubble" + i]._yscale = _root["bubble" + i]._xscale;
}
else
{
_root["bubble" + i]._xscale = (- Math.random()) * 100 + 10;
_root["bubble" + i]._yscale = - _root["bubble" + i]._xscale;
}
i++;
}